home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / include / utime.h < prev    next >
C/C++ Source or Header  |  1990-07-23  |  358b  |  20 lines

  1. /* The <utime.h> header is used for the utime() system call. */
  2.  
  3. #ifndef _UTIME_H
  4. #define _UTIME_H
  5.  
  6. struct utimbuf {
  7.   time_t actime;        /* access time */
  8.   time_t modtime;        /* modification time */
  9. };
  10.  
  11.  
  12. /* Function Prototypes. */
  13. #ifndef _ANSI_H
  14. #include <ansi.h>
  15. #endif
  16.  
  17. _PROTOTYPE( int utime, (char *_path, struct utimbuf *_times)        );
  18.  
  19. #endif /* _UTIME_H */
  20.